home *** CD-ROM | disk | FTP | other *** search
/ Aminet 12 / Aminet 12 (1996)(GTI - Schatztruhe)[!][Jun 1996].iso / Aminet / gfx / misc / SafeClip.lha / SafeClip / GCC / Makefile < prev    next >
Makefile  |  1996-03-29  |  253b  |  24 lines

  1. # Target: demo
  2.  
  3. # Flags
  4. CC = gcc
  5. CFLAGS = -O -m68020 -noixemul
  6. LDFLAGS = -L. -s
  7.  
  8. # Objects
  9. OBJ = demo.o safeclip.o clip.o
  10.  
  11. .s.o: 
  12.     gasp $*.s > t.s
  13.     as -o $*.o t.s
  14.     rm -f t.s
  15.  
  16. demo: $(OBJ)
  17.     $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(OBJ)
  18.  
  19. $(OBJ): safeclip.h
  20.  
  21.  
  22.  
  23.  
  24.